*{
	margin: 0;
	padding: 0;
}.hero-header{
    width:100%;
    background: #222;
}
.wrapper{
    width:1000px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}
header{
    padding: 40px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.logo i{
    height: 45px;
    width:45px;
    background-color: #007ced;
    border-radius: 50%;
    color:#fff;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
    text-align: center;
    
}
header .logo img:hover  {
    background-color: rgba(86,86,86,1.00);
    border-radius: 40px;
}
.logo .logo-text{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: normal;
    margin-left: 5px;
}nav .togglebtn span{
    display: block;
    background-color: #007ced;
    margin: 0px 0px;
    width: 1%;
    height: 1px;
    transition: 0.3s;
    transition-property: transform, opacity;
    float: right;
}
nav .navlinks{
    list-style-type: none;
    clear: both;
}
nav .navlinks li{
	font-family: Clicker Script;
    display: inline-block;
    clear: both;
}
nav .navlinks li a{
    color: #e5e5e5;
    margin-right: 2.5rem;
    clear: both;
}



.main-text{
    text-align: center;
    margin-top: 50px;
    color: #E9E9E9;
}


.fillter-buttons{
	margin:2rem;
	text-align:center;
}

.fillter-buttons .btn{
	background: none;
	outline: none;
	border: none;
	cursor:pointer;
	font-weight: 600;
	letter-spacing:.4px;
	margin-left: 1.3rem;
	color:#fdfdfd;
}


.fillter-buttons .btn:hover{
	color:#12f7ff;
}
.section{
	backgroung-color: #596275;
}
.portfolio{
	background-color: #596275; 
}

.portfolio-gallery{
	margin-left:55px;
	position:relative;   
}

.port-box{
	position:relative;
	width:300px;
	border-radius: 15px;
	overflow:hidden;
	background:rgba(255, 255,255, 0.1);
	align-items:center;
	border:2px solid #12f7ff;
    display:inline-block;
	margin-top:30px;
    margin-left:50px;
	box-shadow:0 0 50px 5px rgba(3, 3, 0, .4);
	transition:1s;
}


.port-box .port-image{
	transform: translateY(100px);
	text-align:center;
	opacity:0;
	transition:0.5s;
}

.port-box .port-image:hover{
	transform: translateY(0px);
	opacity:1;
}

	
.port-box:hover {
    transform: scale(1.2);
    z-index: 1;
    color: #000000;
}



.body1{
	min-height: 100vh;
	background-color:rgba(38,22,22,1.00);
	display: flex;
	align-items: center;
	justify-content: center;
}
.images-container{
	dispaly: flex;
}
.image-card{
	width: 240px;
	height: 360px;
	overflow: hidden;
	float: right;
	position: relative;
	cursor: pointer;
	border-radius: 6px;
	box-shadow: 6px 6px 10px #00000070;
	transition: 1s linear;
}
.image-card img{
	width: 100%;
}
.image-card:not(:first-child){
	margin-left: -50px;
}
.image-card:hover{
	transform: translateY(-24px);
}
.image-card:hover~ .image-card{
	transform: translateX(-60PX);
}
